home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / texts / hsc.lha / hsc / Hmpf_Grmbl_Wrcks < prev    next >
Text File  |  1996-04-15  |  1KB  |  50 lines

  1. Hmpf Grmbl Wrcks...
  2.  
  3. Ahh... well, again this hsc release introduces some incompabilities
  4. to older versions. If you never used hsc before, you can skip this
  5. text.
  6.  
  7. In detail, major changes are:
  8.  
  9. - New syntax to define a enumerator-type. Instead of
  10.  
  11.     ALIGN:enum(left|right|middle)
  12.  
  13.   you now have to use
  14.  
  15.     ALIGN:enum("left|right|middle")
  16.  
  17.   So now you can use expressions to define the base-values of an
  18.   enumerator.
  19.  
  20.  
  21. - CLI-option TO has become a keyword, and it is now required to
  22.   write "TO {output}" and no more just "{output}"
  23.  
  24. - CLI-option DESTDIR does no more exist; use TO instead, with a
  25.   directory-separator at the end (usually "/")
  26.   Eg., instead of "DESTDIR hugodir" now use "TO hugodir/". Note
  27.   the trailing slash. Without this "/", the output would have
  28.   been written to "hugodir.html"
  29.  
  30. - CLI-option CHECKURI has disappeared; URIs are now checked for
  31.   existence by default; use IGNORE=21 to suppress warnings.
  32.  
  33. - the keyword "INCLUDE" is no more supported, now you just need
  34.   to pass a list of filenames to be included before the main
  35.   input file is processed
  36.  
  37.   Therefor, hsc now can be handled even more similar to a
  38.   compiler-tool. If you know, what
  39.  
  40.     gcc sepp.c -o sepp hugo.o resi.o
  41.  
  42.   means, you should quickly understand what
  43.  
  44.     hsc sepp.hsc TO /public_html/ inc/hugo.hsc inc/resi.hsc
  45.  
  46.   does: include the two file "inc/hugo.hsc" and "inc/resi.hsc",
  47.   after that process the main file "sepp.hsc" and write the output
  48.   to "/public_html/sepp.html".
  49.  
  50.